Skip to content

chore(deps): update all non-major dependencies #30

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 13, 2025

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 1, 2025

This PR contains the following updates:

Package Change Age Confidence
@eslint/js (source) ^9.29.0 -> ^9.33.0 age confidence
@types/node (source) ^22.15.31 -> ^22.17.1 age confidence
eslint (source) ^9.28.0 -> ^9.33.0 age confidence
eslint-plugin-n ^17.20.0 -> ^17.21.3 age confidence
jiti ^2.4.2 -> ^2.5.1 age confidence
lint-staged ^16.1.0 -> ^16.1.5 age confidence
pnpm (source) 10.12.1 -> 10.14.0 age confidence
pnpm (source) ^10.12.1 -> ^10.14.0 age confidence
simple-git-hooks ^2.13.0 -> ^2.13.1 age confidence
tsx (source) ^4.20.3 -> ^4.20.4 age confidence
typescript-eslint (source) ^8.34.0 -> ^8.39.1 age confidence
verdaccio (source) ^6.1.2 -> ^6.1.6 age confidence
verdaccio-auth-memory (source) ^10.2.2 -> ^10.3.1 age confidence
yaml (source) ^2.8.0 -> ^2.8.1 age confidence

Release Notes

eslint/eslint (@​eslint/js)

v9.33.0

Compare Source

v9.32.0

Compare Source

v9.31.0

Compare Source

v9.30.1

Compare Source

v9.30.0

Compare Source

eslint/eslint (eslint)

v9.33.0

Compare Source

v9.32.0

Compare Source

v9.31.0

Compare Source

v9.30.1

Compare Source

v9.30.0

Compare Source

v9.29.0

Compare Source

eslint-community/eslint-plugin-n (eslint-plugin-n)

v17.21.3

Compare Source

🩹 Fixes

v17.21.2

Compare Source

🧹 Chores

v17.21.1

Compare Source

🩹 Fixes
  • ci: Ignore type test failures for types present in ESLint 8 that we removed in ESLint 9.31.0 (#​460) (76f8150)
  • no-restricted-require: Handle .. paths (#​458) (34719e8)

v17.21.0

Compare Source

🌟 Features
🩹 Fixes
  • correctly handle version ranges in prefer-node-protocol (#​454) (d60439d)
🧹 Chores
unjs/jiti (jiti)

v2.5.1

Compare Source

compare changes

🩹 Fixes
  • interop: Passthrough module if it is a promise (#​389)
❤️ Contributors

v2.5.0

Compare Source

compare changes

🚀 Enhancements
  • Use sha256 for cache entries in fips mode (#​375)
  • rebuildFsCache ( JITI_REBUILD_FS_CACHE) (#​379)
🩹 Fixes
  • Interop modules with nil default export (#​377)
  • register: Handle require(<json>) (#​374)
🏡 Chore
✅ Tests
  • Update snapshot (c7cfeed)
  • Only include src for coverage report (#​372)
❤️ Contributors
lint-staged/lint-staged (lint-staged)

v16.1.5

Compare Source

Patch Changes

v16.1.4

Compare Source

Patch Changes
  • #​1604 90b37b0 Thanks @​iiroj! - Add another types field to package.json to make even more sure NPM detects that lint-staged includes built-in TypeScript type definitions.

v16.1.3

Compare Source

Patch Changes
  • #​1602 7ea700b Thanks @​dword-design! - Add the types field to package.json to make sure NPM detects lint-staged includes built-in TypeScript type definitions.

v16.1.2

Compare Source

Patch Changes
  • #​1570 a7c0c88 Thanks @​ItsNickBarry! - When using --diff-filter with the D option to include deleted staged files, lint-staged no longer tries to stage the deleted files, unless they're no longer deleted. Previously this caused an error from git add like fatal: pathspec 'deleted-file' did not match any files.

  • 38f942e Thanks @​iiroj! - Removed an extraneous log entry that printed shouldHidePArtiallyStagedFiles to console output.

v16.1.1

Compare Source

Patch Changes
  • #​1565 3686977 Thanks @​iiroj! - Lint-staged now explicitly warns about potential data loss when using --no-stash.

  • #​1571 02299a9 Thanks @​iiroj! - Function tasks (introduced in v16.0.0) only received the staged files matching the conpmnfigured glob, instead of all staged files.

  • #​1563 bc61c74 Thanks @​iiroj! - This version fixes incorrect behavior where unstaged changes were committed when using the --no-stash option. This happened because --no-stash implied --no-hide-partially-staged, meaning unstaged changes to files which also had other staged changes were added to the commit by lint-staged; this is no longer the case.

    The previous (incorrect) behavior can still be achieved by using both options --no-stash --no-hide-partially-staged at the same time.

pnpm/pnpm (pnpm)

v10.14.0

Compare Source

Minor Changes
  • Added support for JavaScript runtime resolution

    Declare Node.js, Deno, or Bun in devEngines.runtime (inside package.json) and let pnpm download and pin it automatically.

    Usage example:

    {
      "devEngines": {
        "runtime": {
          "name": "node",
          "version": "^24.4.0",
          "onFail": "download" (we only support the "download" value for now)
        }
      }
    }

    How it works:

    1. pnpm install resolves your specified range to the latest matching runtime version.
    2. The exact version (and checksum) is saved in the lockfile.
    3. Scripts use the local runtime, ensuring consistency across environments.

    Why this is better:

    1. This new setting supports also Deno and Bun (vs. our Node-only settings useNodeVersion and executionEnv.nodeVersion)
    2. Supports version ranges (not just a fixed version).
    3. The resolved version is stored in the pnpm lockfile, along with an integrity checksum for future validation of the Node.js content's validity.
    4. It can be used on any workspace project (like executionEnv.nodeVersion). So, different projects in a workspace can use different runtimes.
    5. For now devEngines.runtime setting will install the runtime locally, which we will improve in future versions of pnpm by using a shared location on the computer.

    Related PR: #​9755.

  • Add --cpu, --libc, and --os to pnpm install, pnpm add, and pnpm dlx to customize supportedArchitectures via the CLI #​7510.

Patch Changes
  • Fix a bug in which pnpm add downloads packages whose libc differ from pnpm.supportedArchitectures.libc.
  • The integrities of the downloaded Node.js artifacts are verified #​9750.
  • Allow dlx to parse CLI flags and options between the dlx command and the command to run or between the dlx command and -- #​9719.
  • pnpm install --prod should removing hoisted dev dependencies #​9782.
  • Fix an edge case bug causing local tarballs to not re-link into the virtual store. This bug would happen when changing the contents of the tarball without renaming the file and running a filtered install.
  • Fix a bug causing pnpm install to incorrectly assume the lockfile is up to date after changing a local tarball that has peers dependencies.

v10.13.1

Compare Source

Patch Changes
  • Run user defined pnpmfiles after pnpmfiles of plugins.

v10.13.0

Compare Source

Minor Changes
  • Added the possibility to load multiple pnpmfiles. The pnpmfile setting can now accept a list of pnpmfile locations #​9702.

  • pnpm will now automatically load the pnpmfile.cjs file from any config dependency named @pnpm/plugin-* or pnpm-plugin-* #​9729.

    The order in which config dependencies are initialized should not matter — they are initialized in alphabetical order. If a specific order is needed, the paths to the pnpmfile.cjs files in the config dependencies can be explicitly listed using the pnpmfile setting in pnpm-workspace.yaml.

Patch Changes
  • When patching dependencies installed via pkg.pr.new, treat them as Git tarball URLs #​9694.
  • Prevent conflicts between local projects' config and the global config in dangerouslyAllowAllBuilds, onlyBuiltDependencies, onlyBuiltDependenciesFile, and neverBuiltDependencies #​9628.
  • Sort keys in pnpm-workspace.yaml with deep #​9701.
  • The pnpm rebuild command should not add pkgs included in ignoredBuiltDependencies to ignoredBuilds in node_modules/.modules.yaml #​9338.
  • Replaced shell-quote with shlex for quoting command arguments #​9381.

v10.12.4

Compare Source

Patch Changes

v10.12.3

Compare Source

Patch Changes
  • Restore hoisting of optional peer dependencies when installing with an outdated lockfile.
    Regression introduced in v10.12.2 by #​9648; resolves #​9685.

v10.12.2

Compare Source

Patch Changes
  • Fixed hoisting with enableGlobalVirtualStore set to true #​9648.
  • Fix the --help and -h flags not working as expected for the pnpm create command.
  • The dependency package path output by the pnpm licenses list --json command is incorrect.
  • Fix a bug in which pnpm deploy fails due to overridden dependencies having peer dependencies causing ERR_PNPM_OUTDATED_LOCKFILE #​9595.
toplenboren/simple-git-hooks (simple-git-hooks)

v2.13.1

Compare Source

Patch Changes
privatenumber/tsx (tsx)

v4.20.4

Compare Source

typescript-eslint/typescript-eslint (typescript-eslint)

v8.39.1

Compare Source

🩹 Fixes
  • typescript-eslint: handle file:// urls in stack trace when inferring tsconfigRootDir (#​11464)
❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.39.0

Compare Source

🚀 Features
❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.38.0

Compare Source

🩹 Fixes
  • typescript-eslint: error on nested extends in tseslint.config() (#​11361)
  • typescript-eslint: infer tsconfigRootDir with v8 API (#​11412)
❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.37.0

Compare Source

🚀 Features
  • typescript-estree: infer tsconfigRootDir from call stack (#​11370)
❤️ Thank You
  • Josh Goldberg ✨

You can read about our versioning strategy and releases on our website.

v8.36.0

Compare Source

🚀 Features
  • typescript-eslint: support basePath in tseslint.config() (#​11357)
❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.35.1

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.35.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.34.1

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

verdaccio/verdaccio (verdaccio)

v6.1.6

Compare Source

What's Changed

Full Changelog: verdaccio/verdaccio@v6.1.5...v6.1.6

v6.1.5

Compare Source

What's Changed

Full Changelog: verdaccio/verdaccio@v6.1.4...v6.1.5

v6.1.4

Compare Source

What's Changed

Full Changelog: verdaccio/verdaccio@v6.1.3...v6.1.4

v6.1.3

Compare Source

What's Changed

Full Changelog: verdaccio/verdaccio@v6.1.2...v6.1.3

verdaccio/monorepo (verdaccio-auth-memory)

v10.3.1

Compare Source

Patch Changes
  • b933033: fix: verdaccio core dependency

v10.3.0

Compare Source

Minor Changes
  • 74655e3: feat: replace dependencies and add debug code
  • 74655e3: feat: replace dependencies and add debug code
eemeli/yaml (yaml)

v2.8.1

Compare Source

  • Preserve empty block literals (#​634)

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 0-3 1 * * ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies label Jul 1, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 7fdb8d7 to bfb8565 Compare July 8, 2025 17:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 0bc36cd to 19e4e85 Compare July 15, 2025 12:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from b12ecb1 to 20e2a3e Compare July 25, 2025 20:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from c8e4651 to 318cb7b Compare August 1, 2025 01:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 83f8600 to 48ebb82 Compare August 8, 2025 20:23
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 4c340db to af4401d Compare August 11, 2025 18:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from af4401d to 0159e81 Compare August 12, 2025 14:46
@haoqunjiang haoqunjiang merged commit 6d40bd2 into main Aug 13, 2025
1 check passed
@haoqunjiang haoqunjiang deleted the renovate/all-minor-patch branch August 13, 2025 07:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant